{% extends "base.html" %} {% block title %}Health Articles - Quick Care Connect{% endblock %} {% block extra_css %} {% endblock %} {% block page_breadcrumb %}
{% endblock %} {% block content %}
{# ---- COMPACT HERO ---- #}

Health Articles & Tips

Trusted medical advice written by verified doctors.

{# ---- MAIN COLUMN (Grid) ---- #}
{% if search %}Results for "{{ search }}"{% else %}Latest Articles{% endif %} ({{ blogs.total }}) {% if blogs.total and blogs.pages > 1 %} Page {{ blogs.page }} of {{ blogs.pages }} · 6 per page {% endif %}
{% if session.user_role == 'doctor' %} Write {% endif %}
{% if blogs.items %} {% macro cat_class(blog) %} {% set cat = blog.category.lower() if blog.category else 'general' %} {% if 'cardio' in cat %}cat-cardiology {% elif 'neuro' in cat %}cat-neurology {% elif 'nutri' in cat or 'diet' in cat %}cat-nutrition {% elif 'derm' in cat or 'skin' in cat %}cat-dermatology {% elif 'pedia' in cat or 'child' in cat %}cat-pediatrics {% elif 'psych' in cat or 'mental' in cat %}cat-psychiatry {% elif 'ortho' in cat or 'bone' in cat %}cat-orthopedics {% else %}cat-default {% endif %} {% endmacro %} {% macro cat_icon(blog) %} {% set cat = blog.category.lower() if blog.category else 'general' %} {% if 'cardio' in cat %}fa-heartbeat {% elif 'neuro' in cat %}fa-brain {% elif 'nutri' in cat or 'diet' in cat %}fa-apple-alt {% elif 'derm' in cat or 'skin' in cat %}fa-allergies {% elif 'pedia' in cat or 'child' in cat %}fa-baby {% elif 'psych' in cat or 'mental' in cat %}fa-smile-beam {% elif 'ortho' in cat or 'bone' in cat %}fa-bone {% else %}fa-file-medical {% endif %} {% endmacro %}
{% for blog in blogs.items %} {% set hero_path = blog_static_image_path(blog) %}
{{ blog.published_at.strftime('%b %d %Y') }}
{% if hero_path %} {{ blog.title }} {% else %}
{% endif %}
{{ blog.title }}
{% if blog.excerpt %}{{ blog.excerpt }}{% else %}{{ blog.content|striptags|truncate(150) }}{% endif %}
{% endfor %}
{# Pagination #} {% if blogs.pages > 1 %} {% endif %} {% else %}
No articles found.
{% endif %}
{# ---- SIDEBAR (sticky stack: categories → contributors → CTA) ---- #}
{% if top_contributors %} {% endif %}
Need medical advice?

Consult with our verified doctors online or book a clinic visit.

Find a Doctor
{% endblock %}